home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 24
/
Amiga Format AFCD24 (Feb 1998, Issue 108).iso
/
-seriously_amiga-
/
shareware
/
graphics
/
sviewng
/
arexx-scripts
/
setsvdriver.rx
< prev
next >
Wrap
Text File
|
1998-01-12
|
888b
|
52 lines
/*
$VER: SetDriver.rx V6.21 (17.3.97)
© 1993-97 by Andreas R. Kleinert
This script demonstrates how to modify the global SVDriver preferences
by using SViewNG's ARexxPort.
The resulting changes will also appear on SViewNG's GUI,
if already open.
*/
address command
SViewNG "-INSTALL_APPMENU=FALSE -INSTALL_APPICON=FALSE"
say ""
say "ARexx: SViewNG has been started : Waiting a moment..."
wait 5
OPTIONS RESULTS
SIGNAL ON ERROR
SVNGPORT = 'SViewNG.rx'
SVPORT = 'SuperView.rx'
IF ~SHOW('P',SVPORT) THEN SVPORT = SVNGPORT
IF ~SHOW('P',SVPORT) THEN DO
say "Could not locate ARexx port of SViewNG !"
CALL ErrorOut 0
END
ADDRESS VALUE SVPORT
'SVDRIVER=ECS ScreenDriver'
address command wait 5
'SVDRIVER=AGA ScreenDriver'
CALL ErrorOut 0
/* Errorout procedure ----------------------- */
ErrorOut:
PARSE ARG ExitCode
EXIT ExitCode
END